home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr26 / ascii73.zip / SMOOTH.DOC < prev    next >
Text File  |  1989-01-09  |  2KB  |  50 lines

  1.  
  2. SMOOTH.COM
  3. Command
  4.  
  5. Michael J. Mefford
  6. 1989 No. 3 (Utilities)
  7.  
  8.  
  9. Purpose:    An EGA or VGA text-browsing utility that makes reading from the
  10. screen easier by providing smooth scrolling in either direction at
  11. user-selectable speeds.
  12.     
  13. Format:    SMOOTH filespec [/W][/Snn][Cmmm]
  14.     
  15. Remarks:    The filespec entered with SMOOTH is a filename plus any required
  16. drive and path information.  The optional /W switch strips the "high bit" from
  17. WordStar document files.  The optional /Snn switch sets the scrolling speed,
  18. where nn is a decimal number that represents twice the number of pixel rows to
  19. be scanned on each screen refresh cycle.  The default value for nn is 3.  For
  20. comparative purposes, the DOS TYPE command used with an EGA (14 pixel rows per
  21. character) would have an nn of 28.  The optional /Cmmm sets the foreground and
  22. background colors according to:
  23.  
  24.     mmm = Foreground color + (Background color * 16)
  25.  
  26.     The foreground and background color numbers are given in the BASIC
  27. manual under the heading, Color statement.  The default is 23 (white letters on
  28. a blue background).
  29.  
  30.     The up-arrow and down-arrows set the scrolling direction, and PgUp and
  31. PgDn flip a screen page. The Home and End keys go directly to the top and bottom
  32. of the file.  Pressing the space bar (or the numeral 0) freezes the screen,
  33. which can be restarted by pressing any key.  Hitting Esc cancels SMOOTH and
  34. returns to DOS. Pressing the plus and minus keys speeds up or slows down the
  35. scroll rate, as does pressing the number keys.
  36.  
  37.     Note:  Since SMOOTH manipulates the Cathode Ray Tube Controller
  38. registers directly, it is incompatible with operation of SideKick and Print
  39. Screen.
  40.  
  41.     Available for downloading from PC MagNet (see the SMOOTH by Modem
  42. sidebar), SMOOTH.COM is already compiled and ready to run.  SMOOTH.BAS will
  43. automatically create SMOOTH.COM when run once in BASIC.  To create SMOOTH.COM
  44. from the SMOOTH.ASM source code requires use of a macro assembler (IBM or
  45. Microsoft, Version 2 or later) and the following commands:
  46.  
  47. MASM SMOOTH;
  48. LINK SMOOTH;
  49. EXE2BIN SMOOTH SMOOTH.COM;
  50.